home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_bab_playmusic.cog < prev    next >
Text File  |  1999-11-15  |  808b  |  41 lines

  1. # Jones 3D Cog Script
  2. #
  3. # gen_PlayDialog.cog
  4. #
  5. # plays a line of dialogue as you enter a sector
  6. # modified from BAB_Playmusic.cog
  7. #
  8. # [SXC]
  9. #
  10. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  11. # ========================================================================================
  12.  
  13. symbols
  14.     message     entered
  15.     message     startup
  16.  
  17.     int            bnosound=0                       local
  18.     sector        triggersector
  19.     sound        dialogue     
  20. end
  21.  
  22. # ========================================================================================
  23.  
  24. code
  25. startup:
  26.     bnosound=0;
  27.     return;
  28.  
  29. # ........................................................................................
  30.  
  31. entered:
  32.     if (bnosound==0)
  33.     {
  34.         bnosound=1;
  35.         PlaySoundLocal(dialogue, 0.75, 0, 0x0, 0);
  36.     }
  37.     return;
  38.  
  39. end
  40.  
  41.